Feedback Form
Go back to fronty page View most popular entries View latest additions Submit tutorials to UnixTutorials.info
UnixTutorials logo

Search results for comfort plus mattress

Unix+clones Tunneling SSH over HTTP(S)
Post date: March 12, 2006, 03:03 Category: Network Views: 1115 Comments: 0
Tutorial quote: This document explains how to set up an Apache server and SSH client to allow tunneling SSH over HTTP(S). This can be useful on restricted networks that either firewall everything except HTTP traffic (tcp/80) or require users to use a local (HTTP) proxy.
Ubuntu How to use SSH Via HTTP Proxy using Corkscrew in Ubuntu
Post date: December 28, 2008, 16:12 Category: Software Views: 2095 Comments: 0
Tutorial quote: If you want to ssh your vps server or your home computer from your work place (assuming you are using http proxy).You need to use Corkscrew.corkscrew is a simple tool to tunnel TCP connections through an HTTP proxy supporting the CONNECT method. It reads stdin and writes to stdout during the connection, just like netcat.

Linux Measuring the Performance of HTTP Web Servers using ApacheBench (ab)
Post date: January 24, 2010, 00:01 Category: Benchmarks Views: 101 Comments: 0
Tutorial quote: ApacheBench is a command line utility for measuring the performance of HTTP web servers, in particular the Apache HTTP Server. It was designed to give an idea of the performance that a given Apache installation can provide. In particular, it shows how many requests per second the server is capable of serving.
Debian How To Install A Complete LEMP (Linux - EngineX (Nginx HTTP SERVER) - Mysql - PHP) Server On Ubuntu/Debian
Post date: October 19, 2007, 04:10 Category: Installing Views: 1249 Comments: 0
Tutorial quote: This HowTo will describe the setup of an efficient http server and mail server for small or medium configurations (as low as 96 mb). Why LEMP instead of LAMP? NGINX is a great replacement for Apache with very low memory footprint and great stability.
FreeBSD Lightweight Web Serving with thttpd
Post date: November 30, 2005, 18:11 Category: Software Views: 1182 Comments: 0
Tutorial quote: The Apache HTTP Server is the most popular web server due to its functionality, stability, and maturity. However, this does not make it suitable for all uses: slow machines and embedded systems may have serious problems running it because of its size. Here is where lightweight HTTP servers come into play, as their low-memory footprints deliver decent results without having to swap data back to disk.

Similarly, these small HTTP servers are suitable to serve static content efficiently so as to allow Apache, mod_perl, mod_python, or even servlet containers to handle dynamic requests without tying up memory-hungry children to serve small images. In other words, these applications can serve as a complement to your existing full-featured web server, not as a replacement.

One of these servers is thttpd, a simple, small, portable, fast, and secure HTTP server. Among its features are support for the HTTP/1.1 standard, CGIs, virtual hosts, and IPv6. This article shows how to install and configure this software under NetBSD. I chose NetBSD not only because it is my preferred OS, but also because it has the ability to run on the most disparate old hardware, where thttpd shows its strengths. I had a Macintosh Performa 630 (a 68LC040 chip at 33MHz) running NetBSD/mac68k 2.0 with thttpd on top of it, serving pages to my home network nicely.
Debian How To Enable Multiple HTTPS Sites For One IP On Debian Etch Using TLS Extensions
Post date: November 19, 2007, 05:11 Category: Software Views: 1109 Comments: 0
Tutorial quote: This guide is Debian specific but could be ported to other distributions since the concept is the same. In order to use TLS Extensions we have to patch and recompile Apache2 and recompile OpenSSL with the enable-tlsext directive. Since TLS extensions are relatively new, some Internet browsers will not work so the Apache2 server will deliver just the default site as http 1.0 does on an http 1.1 server.
Linux Boot Linux Over HTTP With netboot.me
Post date: October 1, 2009, 07:10 Category: Miscellaneous Views: 440 Comments: 0
Tutorial quote: This tutorial shows how you can boot Linux over HTTP with netboot.me. All that users need is Internet connectivity and a small program (gpxe) to boot the machine. This gpxe program provides network booting facility. netboot.me allows you to boot into the following distributions: Debian, Fedora, OpenSUSE, and Ubuntu. netboot.me provides gpxe images for USB sticks, CDs, and also for floppies, i.e., you can boot from a USB sticks, a CD, or a floppy.
Unix+clones Chkrootkit Portsentry Howto
Post date: April 15, 2005, 18:04 Category: Security Views: 1043 Comments: 0
Tutorial quote: This document describes how to install chkrootkit and portsentry. It should work (maybe with slight changes concerning paths etc.) on all *nix operating systems.

Chkrootkit "is a tool to locally check for signs of a rootkit" (from http://www.chkrootkit.org).

"The Sentry tools provide host-level security services for the Unix platform. PortSentry, Logcheck/LogSentry, and HostSentry protect against portscans, automate log file auditing, and detect suspicious login activity on a continuous basis" (from http://sourceforge.net/projects/sentrytools/).

This howto is meant as a practical guide.
Linux Boot Linux Over HTTP With boot.kernel.org (BKO)
Post date: September 27, 2009, 04:09 Category: Miscellaneous Views: 354 Comments: 0
Tutorial quote: This tutorial shows how you can boot Linux over HTTP with boot.kernel.org (BKO). All that users need is Internet connectivity and a small program (gpxe) to boot the machine. This gpxe program provides network booting facility. BKO allows you to boot into the following distributions: Debian, Ubuntu, Damn Small Linux, Knoppix, Fedora. BKO provides gpxe images for USB sticks, CDs, and also for floppies, i.e., you can boot from a USB sticks, a CD, or a floppy.
Ubuntu Nginx HTTP Server + PHP5 (With fast-cgi And xcache) On Ubuntu Feisty Fawn
Post date: October 10, 2007, 05:10 Category: Installing Views: 1849 Comments: 0
Tutorial quote: Nginx HTTP Server + PHP5 (With fast-cgi And xcache) On Ubuntu Feisty Fawn

This HowTo describes the implementation of Nginx with php5 support (through FastCGI). The fast-cgi process will be initiated via spawn-fcgi. Nginx is a great replacement of Apache with very low memory footprint and contrary to Lighttpd, does not suffer from memory leak over time. You can then use all the memory left to unleash the power of mysql for instance by increasing the default query cache.